home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_1 / easyprocess / source / dragon / makefile < prev   
Makefile  |  1992-09-07  |  365b  |  26 lines

  1. #
  2. #    Compile the program.
  3. #
  4.  
  5. LAUNCH_DIR = source:launch
  6. LAUNCH_LIB = $(LAUNCH_DIR)/launch.lib
  7.  
  8. DRAGON_DIR = source:dragon
  9.  
  10. Dragon: Dragon.o $(LAUNCH_LIB)
  11.     blink <with <
  12.     FROM lib:c.o Dragon.o
  13.     TO Dragon
  14.     LIB $(LAUNCH_LIB) lib:lcr.lib
  15.     SMALLCODE
  16.     SMALLDATA
  17.     NODEBUG
  18.     <
  19.  
  20. Dragon.o: Dragon.c Dragon.h DragonGad.h
  21.  
  22. $(LAUNCH_LIB):
  23.     cd $(LAUNCH_DIR)
  24.     lmk
  25.     cd $(DRAGON_DIR)
  26.